home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Science⁄Math
/
VideoToolbox
/
VideoToolboxSources
/
Uniform.c
< prev
next >
Wrap
Text File
|
1993-12-15
|
420b
|
19 lines
/*
Uniform.c
UniformSample() returns a random sample from the interval [0,1).
It has a mean of 1/2 and a variance of 1/12.
Also see: Binomial.c, ChiSquare.c, Exponential.c, Normal.c
HISTORY:
12/28/91 dgp extracted it from Normal.c
*/
#include "VideoToolbox.h"
double UniformSample(void)
{
return rand()*(1.0/(RAND_MAX+1.0));
}
/*
The constant is evaluated by the compiler. Multiplication is faster than division.
*/